Matthias Clasen [Mon, 23 Nov 2015 19:23:16 +0000 (14:23 -0500)]
places view: Fix up docs
Rico Tzschichholz [Mon, 23 Nov 2015 21:24:41 +0000 (22:24 +0100)]
gtk: Fix make dist
Daniel Mustieles [Mon, 23 Nov 2015 18:04:26 +0000 (19:04 +0100)]
Updated Spanish translation
Daniel Mustieles [Mon, 23 Nov 2015 18:04:16 +0000 (19:04 +0100)]
Updated Spanish translation
Carlos Garnacho [Mon, 23 Nov 2015 17:18:46 +0000 (18:18 +0100)]
searchenginetracker: Remove astray ");" closing a function
Sad face for me.
Carlos Garnacho [Fri, 20 Nov 2015 18:04:39 +0000 (19:04 +0100)]
searchenginetracker: Optimize direct/recursive folder lookups
tracker:uri-is-descendant/parent has the unfortunate side effect of
rendering the collation mechanisms in the database useless, so those
require full table scans to be validated.
Performing these as pure string comparisons will perform much better,
as those allow the underlying sqlite to rely on its own collation
to perform the search, which can be significantly faster with many
elements in the database.
https://bugzilla.gnome.org/show_bug.cgi?id=758407
Carlos Garnacho [Fri, 20 Nov 2015 18:02:17 +0000 (19:02 +0100)]
searchenginetracker: ensure nie:url is bound
This could produce strange warnings as it is currently passed to
tracker:uri-is-* sparql functions, as these expect no NULLs.
https://bugzilla.gnome.org/show_bug.cgi?id=758407
Jakub Steiner [Mon, 23 Nov 2015 15:13:45 +0000 (16:13 +0100)]
last last gesture stock image fixes
- swipe left was missing outline conversion to allow recolorization
Matthias Clasen [Mon, 23 Nov 2015 15:07:44 +0000 (10:07 -0500)]
Load gesture images as symbolic icons
This makes them recolor in the dark theme, which looks better.
Jakub Steiner [Mon, 23 Nov 2015 14:53:02 +0000 (15:53 +0100)]
gesture stock images size fix
fit all images to 64x64
Jakub Steiner [Mon, 23 Nov 2015 14:45:24 +0000 (15:45 +0100)]
gesture stock images fixes
- convert all objects to shapes to allow css recoloring
ala symbolic icons
Jakub Steiner [Mon, 23 Nov 2015 13:39:53 +0000 (14:39 +0100)]
more gesture stock images tweaks
- rotation gestures more natural look
Matthias Clasen [Mon, 23 Nov 2015 13:37:14 +0000 (08:37 -0500)]
gtk-demo: Stop using GtkShortcutsGesture
Use the new predefined gestures, and GtkShortcutsShortcut.
Matthias Clasen [Mon, 23 Nov 2015 13:17:49 +0000 (08:17 -0500)]
Tweak the gtk-font-name setting docs
Clarify that only parts of the font name are used.
https://bugzilla.gnome.org/show_bug.cgi?id=758367
Jakub Steiner [Mon, 23 Nov 2015 13:06:18 +0000 (14:06 +0100)]
gesture stock images sizing
- make swipe left and right less wide
Jakub Steiner [Mon, 23 Nov 2015 12:53:12 +0000 (13:53 +0100)]
minor touchups on stock gesture images
- add minimal margin for safe scaling
- fixed height of 64pixels
- pixel alignment issues (grid fit)
Matthias Clasen [Sun, 22 Nov 2015 20:27:05 +0000 (15:27 -0500)]
shortcuts: Add set properties for optional things
This makes it possible to switch between gesture and accelerator
types and override the builtin icons and subtitles for predefined
gestures.
Matthias Clasen [Sun, 22 Nov 2015 07:25:16 +0000 (02:25 -0500)]
gtk-demo: Show all built-in gesture images
Show all the predefined gestures which have enum values
in GtkShortcutType. This also demonstrates the gesture
functionality of GtkShortcutsShortcut.
Matthias Clasen [Sun, 22 Nov 2015 07:24:12 +0000 (02:24 -0500)]
shortcuts: Add support for standard gestures
Add an enum for gestures that GtkShortcutsShortcut knows how
to show an image and subtitle for.
https://bugzilla.gnome.org/show_bug.cgi?id=758187
Matthias Clasen [Sun, 22 Nov 2015 07:23:28 +0000 (02:23 -0500)]
Add stock gesture images
These will be used in the shortcuts window.
Matthias Clasen [Sun, 22 Nov 2015 06:18:54 +0000 (01:18 -0500)]
shortcuts shortcut: Take over gesture functionality
It turns out that it is nicer in glade to have just a single
widget that can show either a shortcut or a gesture, so make
GtkShortcutsShortcut do it both.
GtkShortcutsGesture is now redundant and will be removed before
the next stable release.
Matthias Clasen [Sun, 22 Nov 2015 19:16:12 +0000 (14:16 -0500)]
shortcuts: Fix size group handling
We need to keep pointers to the size groups and apply
them to shortcuts that are added later.
Matthias Clasen [Sat, 21 Nov 2015 03:58:06 +0000 (22:58 -0500)]
shortcuts: Complete the container implementations
Various problems with the container implementations in
GtkShortcutsWindow, Section and Group were showing up
in glade.
Matthias Clasen [Sat, 21 Nov 2015 03:03:39 +0000 (22:03 -0500)]
shortcuts: Update title and section-names properly
The current code in gtkshortcutswindow.c is good enough to
construct a widget once from a .ui file, but fails to handle
changes at runtime, as happen e.g. in glade. Fix this by
listening for changes to section-name and title.
Piotr Drąg [Sun, 22 Nov 2015 19:01:39 +0000 (20:01 +0100)]
Updated POTFILES.in
Timm Bäder [Sun, 22 Nov 2015 10:43:39 +0000 (11:43 +0100)]
Don't pass widget state flags to GtkStyleContext API
Руслан Ижбулатов [Sat, 21 Nov 2015 03:38:26 +0000 (03:38 +0000)]
GDK W32: Only restack windows with matching always-on-top status
This prevents normal application windows (and other kinds of windows)
from being moved up in Z-order to be above windows that have the
always-on-top bit set. Doing so would make the previously-normal windows
in question also always-on-top implicitly.
Windows that are already always-on-top will be restacked on top of other
always-on-top windows too.
https://bugzilla.gnome.org/show_bug.cgi?id=746745
Руслан Ижбулатов [Sat, 21 Nov 2015 03:37:40 +0000 (03:37 +0000)]
GDK W32: Refactor restacking functions a bit
Cosimo Cecchi [Sat, 21 Nov 2015 05:48:31 +0000 (21:48 -0800)]
GtkRenderBorder: make one function static
Cosimo Cecchi [Sat, 21 Nov 2015 05:20:48 +0000 (21:20 -0800)]
GtkCssImage: formatting fixes
Timm Bäder [Sat, 21 Nov 2015 20:04:02 +0000 (21:04 +0100)]
gtk-demo: Fix selection in css basics demo
Pedro Albuquerque [Sat, 21 Nov 2015 09:01:10 +0000 (09:01 +0000)]
Updated Portuguese translation
Matthias Clasen [Sat, 21 Nov 2015 01:58:42 +0000 (20:58 -0500)]
inspector: Always underline at least one char
Empty underlines are hard to make out. Since we get somewhat
unreliable section information from the CSS parser, we just
make sure that we always underline at least one character.
Benjamin Otte [Sat, 21 Nov 2015 01:40:05 +0000 (02:40 +0100)]
cssnodedeclaration: Only set the id on the widget path if we have one
Widget paths don't like NULL.
Matthias Clasen [Sat, 21 Nov 2015 01:34:53 +0000 (20:34 -0500)]
Update key themes to use -gtk-key-bindings
The name gtk-key-bindings has been deprecated and causes warnings.
Matthias Clasen [Sat, 21 Nov 2015 01:34:03 +0000 (20:34 -0500)]
Rename the gtk-key-bindings property
This is not a standard CSS property, so rename it to
-gtk-key-bindings. We still support the old name, with a
deprecation warning.
Matthias Clasen [Sat, 21 Nov 2015 01:32:42 +0000 (20:32 -0500)]
HighContrast: use -gtk-icon-shadow
The name icon-shadow has been deprecated and causes warnings.
Matthias Clasen [Sat, 21 Nov 2015 01:30:54 +0000 (20:30 -0500)]
Adwaita: use -gtk-icon-shadow
The name icon-shadow has been deprecated and causes warnings.
Matthias Clasen [Sat, 21 Nov 2015 01:25:33 +0000 (20:25 -0500)]
Rename the icon-shadow property
This is not a standard CSS property, so rename it to
-gtk-icon-shadow. We still support the old name, with a
deprecation warning.
Matthias Clasen [Sat, 21 Nov 2015 01:21:33 +0000 (20:21 -0500)]
Warn if a property alias is used
Emit a deprecation warning if a property is not used
by its official name.
Matthias Clasen [Sat, 21 Nov 2015 01:20:00 +0000 (20:20 -0500)]
Add a way to add aliases for css properties
This will be used to rename some properties in a more
systematic way without breaking all users of the old name.
Matthias Clasen [Sat, 21 Nov 2015 00:04:14 +0000 (19:04 -0500)]
Add a deprecation error for the engine css property
This helps people fix up their css.
Matthias Clasen [Sat, 21 Nov 2015 00:01:54 +0000 (19:01 -0500)]
inspector: Fix css warning tags
The builder syntax for tags was invalid here (why did this not
get flagged as error ?!). While we're at it, give the warning
underline a nice, orange color.
Benjamin Otte [Sat, 21 Nov 2015 01:22:22 +0000 (02:22 +0100)]
stylecontext: Treat empty path like no path
This way, we don't do weird stuff when an empty path is set.
Benjamin Otte [Sat, 21 Nov 2015 01:21:12 +0000 (02:21 +0100)]
stylecontext: Copy name when setting widget path
Imitate what we do for the type. This way we don't lose the name on
save/restore.
https://bugzilla.gnome.org/show_bug.cgi?id=758442
Benjamin Otte [Sat, 21 Nov 2015 01:11:58 +0000 (02:11 +0100)]
cssnodedeclaration: Set element name and id on widget path
Otherwise the widget path creation functions will fail. This affects
widgets still using gtk_style_context_save().
https://bugzilla.gnome.org/show_bug.cgi?id=758442
Benjamin Otte [Sat, 21 Nov 2015 01:11:52 +0000 (02:11 +0100)]
customproperty: Remove unused function
Benjamin Otte [Fri, 20 Nov 2015 23:51:22 +0000 (00:51 +0100)]
customproperty: Stop supporting the parsing of values
Now that we don't use custom CSS properties anymore, let's fail as early
as possible.
Matthias Clasen [Fri, 20 Nov 2015 23:18:01 +0000 (18:18 -0500)]
inspector: Show css parsing errors
The squiggly underline is useful, but seeing the error message
is much better, so show it in a tooltip.
Matthias Clasen [Fri, 20 Nov 2015 20:30:29 +0000 (15:30 -0500)]
Expand the container_remove hack
Make it possible to use gtk_container_remove on GtkShortcutsWindow.
glade needs this.
Matthias Clasen [Fri, 20 Nov 2015 19:59:56 +0000 (14:59 -0500)]
shortcuts window: More complete container implementation
To give glade a chance to work with GtkShortcutsWindow, the
container implementation needs to be a bit more complete.
Benjamin Otte [Fri, 20 Nov 2015 18:37:52 +0000 (19:37 +0100)]
cssstyle: Don't store custom css properties
This makes custom CSS properties no longer configurable. But it avoids
crashes when loading custom themes, so that's a good thing.
Testcase included.
https://bugzilla.redhat.com/show_bug.cgi?id=
1281234
Timm Bäder [Fri, 20 Nov 2015 18:15:27 +0000 (19:15 +0100)]
GtkSpinButton: Update node state on button release
Aurimas Černius [Fri, 20 Nov 2015 19:17:47 +0000 (21:17 +0200)]
Updated Lithuanian translation
Jonas Ådahl [Fri, 20 Nov 2015 08:49:12 +0000 (16:49 +0800)]
wayland: Set a null cursor surface when cursor buffer is null
If the buffer of a cursor is NULL, for example if its an empty cursor,
just set the cursor surface to NULL as well. Not doing this we'll use
uninitialized hotspot coordinates, dimensions and scales.
https://bugzilla.gnome.org/show_bug.cgi?id=758025
Matthias Clasen [Fri, 20 Nov 2015 16:40:55 +0000 (11:40 -0500)]
spin button: Fix initial button state
We can't use up_panel and down_panel as differentiators for the buttons,
because these window system resources don't exist before realize().
Just use a one-off enum for this purpose.
https://bugzilla.gnome.org/show_bug.cgi?id=758094
Timm Bäder [Fri, 20 Nov 2015 15:06:10 +0000 (16:06 +0100)]
GtkLabel: Create gestures only when needed
And move them into the GtkLabelSelectionInfo struct.
Carlos Garnacho [Fri, 20 Nov 2015 12:29:34 +0000 (13:29 +0100)]
gtkdnd: Unbreak non-wayland builds
missing #ifdef...
Matthias Clasen [Thu, 19 Nov 2015 20:32:32 +0000 (15:32 -0500)]
3.19.2
Matthias Clasen [Fri, 20 Nov 2015 04:04:38 +0000 (23:04 -0500)]
cell renderer progress: Avoid warnings
Use the right state when calling gtk_style_context_get_padding,
to avoid warnings.
Matthias Clasen [Fri, 20 Nov 2015 02:55:29 +0000 (21:55 -0500)]
Fix make check
For some reason, GtkFileChooserNative is causing the defaultvalue
test to fail. I couldn't track this down quickly, so skip the
type for now.
Matthias Clasen [Fri, 20 Nov 2015 00:56:19 +0000 (19:56 -0500)]
Work around g_test_dbus annoyance
Without iterating a mainloop for a bit, g_test_dbus_down() will
give us an error.
Matthias Clasen [Thu, 19 Nov 2015 23:08:30 +0000 (18:08 -0500)]
stack switcher: Notify consistently
Whether to notify a property change should not depend
on whether the switcher is associated with a stack or not.
Matthias Clasen [Thu, 19 Nov 2015 23:05:35 +0000 (18:05 -0500)]
shortcuts: Avoid excessive property notification
Notifying needlessly causes unnecessary work, and causes our
testsuite to fail.
Carlos Garnacho [Thu, 19 Nov 2015 23:07:36 +0000 (00:07 +0100)]
wayland: Ensure we have a drop-side GdkDragContext without pointer
This GdkDragContext should be created even if we don't have pointer
capabilities. Make it created on add_seat(), and only set the device
on wl_seat.capabilities, so it can be set to either master pointer.
https://bugzilla.gnome.org/show_bug.cgi?id=741066
Carlos Garnacho [Thu, 19 Nov 2015 19:33:03 +0000 (20:33 +0100)]
gtkdnd: Ensure we don't fold the drag icon into the cursor on wayland
This is wrong by all accounts there, as we can do no tricks there to show
a "drag failed" animation, which is performed by the compositor itself
on wayland.
Carlos Garnacho [Thu, 19 Nov 2015 19:26:11 +0000 (20:26 +0100)]
wayland: Fix toplevel lookup before starting DnD
We use the high-level gdk_device_get_window_at_position() to figure
out the window, although this one actually tries to find out the
current window under the device coordinates, which might well fall
outside the window, so NULL is returned in those cases.
Fix this by using the lower level _gdk_device_window_at_position()
that will return the toplevel without further lookups, so is more
desirable here.
https://bugzilla.gnome.org/show_bug.cgi?id=758250
Carlos Garnacho [Thu, 19 Nov 2015 19:00:23 +0000 (20:00 +0100)]
gtkdnd: Use gdk_drag_begin_for_device()
We've got the pointer at hand there, just pass that instead of figuring
out from the client pointer.
Carlos Garnacho [Thu, 19 Nov 2015 19:23:44 +0000 (20:23 +0100)]
wayland: Implement GdkDevice::window_at_position for touch
This goes through its own master pointer, so look up the pointer
emulating touch focus window and coordinates.
Carlos Garnacho [Thu, 19 Nov 2015 19:06:07 +0000 (20:06 +0100)]
wayland: Disallow setting the cursor on the touch master pointer
That "pointer" is not backed by anything in the windowing system, ignore
cursor updates there.
Carlos Garnacho [Thu, 19 Nov 2015 19:04:46 +0000 (20:04 +0100)]
wayland: Ensure we get the master pointer on GdkDeviceManager::get_client_pointer
Now that we have multiple master pointers, this call may pick the wrong one.
Instead, pick the GdkWaylandDeviceData from the first device, and pick the
master pointer from there.
Carlos Garnacho [Thu, 8 Oct 2015 14:41:35 +0000 (16:41 +0200)]
wayland: Separate touch pointer emulation into its own master pointer
The common GDK code accounts for "pointer emulating" touch sequences to be
synchronized with the pointer position by the windowing system.
However on Wayland pointer and touch are completely independent, the backend
attempts to implement pointer emulation, but doesn't account for the
possible crossing events happening when the user switches from pointer to
touch or the opposite.
In order to fix this, and to ensure we don't have to interact with the
master pointer (which backs the wl_pointer), separate the touch interface
to have its own master pointer, and ensure crossing events are emitted on
it, so the picture of an "emulated pointer" is complete above the backend.
Inspired in a former patch by Jonny Lamb <jonnylamb@gnome.org>
https://bugzilla.gnome.org/show_bug.cgi?id=750845
Christoph Reiter [Wed, 18 Nov 2015 20:21:57 +0000 (21:21 +0100)]
gtkheaderbar: update the window buttons on ::hierarchy-changed instead of ::realize
The window button setup depends on properties of the toplevel window.
Instead of updating the setup on realize, do it when the toplevel
changes.
This makes sure that when a GtkHeaderBar is added to a window
all the widgets are present and get_preferred_height() will return
the height the widget will have when finally shown. This allows
the logic in gtkwindow to select the right window size so that
the content size will match the requested default size.
https://bugzilla.gnome.org/show_bug.cgi?id=756618
Christoph Reiter [Wed, 18 Nov 2015 18:17:01 +0000 (19:17 +0100)]
gtkwindow: apply CSD adjustments to the default size when used instead of when setting it
Before the resulting window size would differ if the default size was set
before adding a headerbar vs after. Now the saved state is again the actual
requested size and it is adjusted at the time we request a window size.
https://bugzilla.gnome.org/show_bug.cgi?id=756618
Olivier Fourdan [Wed, 4 Nov 2015 10:24:36 +0000 (11:24 +0100)]
window: maximize on double click only if allowed
GtkHeaderBar will not show the maximize button if the window in not of
type normal or not resizeable.
Use the same restriction for double-click actions as well.
Bugzilla: https://bugzilla.gnome.org/show_bug.cgi?id=757530
Jonas Platte [Sun, 8 Nov 2015 16:17:00 +0000 (16:17 +0000)]
Fix return annotations for GtkWindow
Add nullable annotations for functions that may return NULL.
https://bugzilla.gnome.org/show_bug.cgi?id=753520
Phillip Wood [Mon, 16 Nov 2015 12:14:05 +0000 (12:14 +0000)]
Fix character entities
These are not supposed to be supported by gtk-doc¹
¹https://bugzilla.gnome.org/show_bug.cgi?id=758137
https://bugzilla.gnome.org/show_bug.cgi?id=758175
Carlos Soriano [Wed, 11 Nov 2015 12:51:02 +0000 (13:51 +0100)]
gtkstack: allow templates to override all properties
Currently GtkStack has some G_PARAM_CONSTRUCT properties. That means,
the properties are set with its default value after the initializacion
of the object.
When using GtkBuilder to build objects, GtkBuilder creates them and
after that sets the properties found on the xml definition.
However, this is not true for templates because the template is initialized
in the init() function of the actual object, and after that, the construct
properties will be set.
This is a problem when someone wants to use templates with GtkStack and
set those properties, since they will be set on the tempalt initialization
and set again to its default values afterwards.
To fix this, make those properties not G_PARAM_CONSTRUCT.
https://bugzilla.gnome.org/show_bug.cgi?id=758086
Matthias Clasen [Thu, 19 Nov 2015 19:22:27 +0000 (14:22 -0500)]
Updates
Matthias Clasen [Thu, 19 Nov 2015 19:39:42 +0000 (14:39 -0500)]
wayland: Avoid a crash
We can end up in situations where NULL gets passed to
get_transient_parent(). Embrace it instead of avoiding it.
https://bugzilla.gnome.org/show_bug.cgi?id=758327
Matthias Clasen [Thu, 19 Nov 2015 19:01:41 +0000 (14:01 -0500)]
Add more CSS node docs
Matthias Clasen [Thu, 19 Nov 2015 18:40:57 +0000 (13:40 -0500)]
Trivial: Some doc rewording
Matthias Clasen [Thu, 19 Nov 2015 17:55:30 +0000 (12:55 -0500)]
Add some CSS node docs
Write up some of the insights from doing the CSS node transition,
so the knowledge is not lost.
Emmanuele Bassi [Thu, 19 Nov 2015 12:44:17 +0000 (12:44 +0000)]
Do not use the GPL v3 blurb for LGPL v2.1 files
GTK+ is licensed under the terms of the GNU LGPL v2.1+.
Emmanuele Bassi [Thu, 19 Nov 2015 12:43:24 +0000 (12:43 +0000)]
Do not use the LGPL v3 blurb for LGPL v2.1 files
GTK+ is released under the terms of the GNU LGPL v2.1+.
Emmanuele Bassi [Thu, 19 Nov 2015 12:41:22 +0000 (12:41 +0000)]
Fix the license version in GtkTrashMonitor
There is no GNU Lesser General Public License version 2; it's either GNU
Library General Public License version 2, or GNU Lesser General Public
License version 2.1.
Emmanuele Bassi [Thu, 19 Nov 2015 12:33:07 +0000 (12:33 +0000)]
Fix license version for GtkFileChooserWidget private header
Since it's using Lesser GPL, use version 2.1; there is no Lesser GPL v2,
as it was called 'Library GPL' prior to v2.1.
Emmanuele Bassi [Thu, 19 Nov 2015 12:11:05 +0000 (12:11 +0000)]
Fix the licensing blurb of GtkBookmarksManager
Copy-pasta from GPL instead of LGPL.
Also, there is no GNU Lesser General Public License version 2; either
it's the GNU Library General Public License version 2, or it's the GNU
Lesser General Public License version 2.1.
Emmanuele Bassi [Thu, 19 Nov 2015 12:06:54 +0000 (12:06 +0000)]
Fix the licensing blurb in GtkPlacesSidebar
The code is released under the terms of the LGPL v2.1+, as is the rest
of the GTK+ code.
Matthias Clasen [Thu, 19 Nov 2015 12:22:01 +0000 (07:22 -0500)]
Fix license header
I didn't meant to make this different from any other file
in GTK+ when I added it.
Matthias Clasen [Thu, 19 Nov 2015 12:07:26 +0000 (07:07 -0500)]
box: Use an element name
Matthias Clasen [Thu, 19 Nov 2015 11:04:26 +0000 (06:04 -0500)]
toolitemgroup: Fix initial state
GtkToolItemGroup starts out as non-collapsed, make the CSS node
state reflect that.
Matthias Clasen [Wed, 18 Nov 2015 15:21:15 +0000 (10:21 -0500)]
Document GDK_TOUCHPAD_GESTURE_MASK
Christian Hergert [Wed, 18 Nov 2015 22:41:29 +0000 (14:41 -0800)]
entry: ensure valid GdkWindow before set_invisible_cursor()
If the window has not yet been created, then we can't set the invisible
cursor yet. This can happen in situations where the widget is in a
revealer with type-to-search functionality.
Cosimo Cecchi [Wed, 18 Nov 2015 17:16:51 +0000 (09:16 -0800)]
HighContrast: remove deprecated progressbar style properties
These are ignored and trigger a runtime warning.
Daniel Mustieles [Wed, 18 Nov 2015 12:22:59 +0000 (12:22 +0000)]
Updated Spanish translation
Olivier Fourdan [Thu, 12 Nov 2015 15:56:20 +0000 (16:56 +0100)]
gtkwindow: apply csd offset to set/get_default_size
An application may use gtk_window_get_size() to retrieve the current
window size and later reuse that size with
gtk_window_set_default_size().
gtk_window_set_default_size() and gtk_window_get_default_size() should
also take client side decorations offset into account.
Bugzilla: https://bugzilla.gnome.org/show_bug.cgi?id=756618
Matthias Clasen [Wed, 18 Nov 2015 03:48:35 +0000 (22:48 -0500)]
popover: Avoid a crash when no relative-to widget is set
This was showing up in glade, which creates freestanding
popovers.
Matthias Clasen [Wed, 18 Nov 2015 02:47:02 +0000 (21:47 -0500)]
HighContrast: remove deprecated style properties
Matthias Clasen [Wed, 18 Nov 2015 01:48:50 +0000 (20:48 -0500)]
expander: Use the right state when querying style properties
Failure to do so causes warnings.